home *** CD-ROM | disk | FTP | other *** search
/ Robotics & Artificial Int…3 (Professional Edition) / Robotics & Artificial Intelligence Tools 2003 (Professional Edition).iso / robot software / webots-kros-1.0.1_setup.exe / {app} / kteam / glue / etc / Makefile next >
Makefile  |  2001-02-07  |  1KB  |  39 lines

  1. ######################################################################
  2. # User Makefile sample for the Source Navigator / Introl Compiler Env.
  3. #
  4. # Copyright (C) 2000 K-TEAM S.A.
  5. #
  6. ######################################################################
  7.  
  8. # Packages needed by the compiler (must be on the network)
  9. # (DO NOT forget the / at the end).
  10. exeprefix = m68k-none-elf
  11. gccversion = 2.95.2
  12.  
  13. # Include the master makefile
  14. # (PLEASE do not modify)
  15. include $(sft_pack)etc/Makefile_PIC
  16.  
  17. # Libraries for linkage
  18. LOADLIBES = $(SUPPLIB) -lgcc -lstdc++ -liostream -lio -lktdebug -lc -lkbus -lglue -lkernel -lc -lm -lgcc
  19.  
  20. # Assembler Options:
  21. #   --register-prefix-optional: avoid adding a % in front of
  22. #     register name (%a0-%a7,%d0-%d7)
  23. #   -pic: generate position independent code
  24. #   --bitwise-or: do not treat `|' as a comment character
  25. ASFLAGS = --bitwise-or -pic --register-prefix-optional
  26.  
  27. # Linker Executable (gcc or g++ according to the language)
  28. LINKER =  $(prefix)/bin/$(exeprefix)-g++
  29.  
  30. # Linker Options:
  31. #   --embedded-relocs: Generate embedded relocs
  32. #   --cref: Output cross reference table
  33. LDFLAGS = --embedded-relocs
  34.  
  35. # C Compiler Options:
  36. # other gcc options...
  37. CFLAGS    = -Wall -O3
  38.  
  39.